$(document).ready(function(){
	$('.projects li').hover(
		function(){
			$(this).find('.hover').fadeIn(300);
			$(this).find('strong').css('color', '#161617');
		},
		function(){
			$(this).find('.hover').fadeOut(150);
			$(this).find('strong').css('color', 'white');
		}
	);
	$('.projectlist li').hover(
		function(){
			$(this).addClass('hover');
		},
		function(){
         $(this).removeClass('hover');
		}
	);
	$('.g_img').hover(
		function(){
			$(this).addClass('g_hover');
		},
		function(){
         $(this).removeClass('g_hover');
		}
	);
	
	//$(function(){ $("input:checkbox, input:radio, select").uniform(); });
});
   
