$(document).ready(function(){

	$("ul.side-nav li").hover(
		function() {
				$(this).children('a').toggleClass('hover');
				$(this).children('i').css("background-position","left -61px");},
		function() {
				$(this).children('a').toggleClass('hover');
				$(this).children('i').css("background-position","left top");}		
	);
	
	$("div.button").hover(
		function() {
				$(this).css("background-position","left bottom");
				$(this).children('a').css("background-position","right bottom");
				$(this).children('input').css("background-position","right bottom");},
		function() {
				$(this).css("background-position","left top");
				$(this).children('a').css("background-position","right top");
				$(this).children('input').css("background-position","right top");}		
	);
	
	i = false
	$("ul.side-nav li i").click( function() {
		if (!i) {
			$(this).addClass("hover");
			$(this).prev().addClass("select");
			$(this).next().addClass("show");
			i = true;
		} else {
			$(this).removeClass("hover");
			$(this).prev().removeClass("select");
			$(this).next().removeClass("show");
			i = false;
		}
	});
	
	$(".partner-box").each(function (){
									 ht = $(this).outerHeight();
									 lt = $(this).children(".img").height();
									 $(this).children(".img").css("top", ht/2 - lt/2 + "px");
									 });	
});

$(".gal li a img").load(function(){
    	$(".gal li a img").each(function (){
									 ht = $(this).height();
									 /*lt = $(this).children(".img").height();*/
									 $(this).css("top", (64 - ht)/2 + "px");
									 });
});