﻿/*
    ======================================
    Created by Plamen Nikolov
    http://www.nikolov.biz
    plamen@nikolov.biz
    BULGARIA
    ======================================
*/

jQuery(function(){        
    redHover.init()
})

var redHover = {
	
	init: function() {
		jQuery(".tech").children("<a>").each(function() {
			jQuery(this).hover(
			function() {
				jQuery("#redHover").text(jQuery(this).children("img").attr('alt')).fadeIn("slow")
			},
			function() {
				jQuery("#redHover").fadeOut("fast")
			})
		})
	}
}
