$(document).ready(function(){
		$(".work-thumb img").hover(function() {
                $(this).animate({ backgroundColor: "#eee"  }, 600);
        },function() {
                $(this).animate({ backgroundColor: "#fff"  }, 600);
        }),
		$("#left-column img").hover(function() {
                $(this).animate({ backgroundColor: "#eee"  }, 600);
        },function() {
                $(this).animate({ backgroundColor: "#fff"  }, 600);
        }),
		$("#services a.accordion-head1").hover(function() {
                $(this).animate({ color: "#f51473"  }, 400);
        },function() {
                $(this).animate({ color: "#bfbfbf"  }, 400);
        }),
		$("#services a.accordion-head2").hover(function() {
                $(this).animate({ color: "#e91770"  }, 400);
        },function() {
                $(this).animate({ color: "#bfbfbf"  }, 400);
        }),
		$("#services a.accordion-head3").hover(function() {
                $(this).animate({ color: "#d31d6a"  }, 400);
        },function() {
                $(this).animate({ color: "#bfbfbf"  }, 400);
        }),
		$("#services a.accordion-head4").hover(function() {
                $(this).animate({ color: "#c71d65"  }, 400);
        },function() {
                $(this).animate({ color: "#bfbfbf"  }, 400);
        }),
		$("#services a.accordion-head5").hover(function() {
                $(this).animate({ color: "#be1e62"  }, 400);
        },function() {
                $(this).animate({ color: "#bfbfbf"  }, 400);
        }),
		$("#services a.accordion-head6").hover(function() {
                $(this).animate({ color: "#a42058"  }, 400);
        },function() {
                $(this).animate({ color: "#bfbfbf"  }, 400);
        }),
		$("#services a.accordion-head7").hover(function() {
                $(this).animate({ color: "#941f54"  }, 400);
        },function() {
                $(this).animate({ color: "#bfbfbf"  }, 400);
        }),

		$("#accordion").accordion({
		active: false,
		collapsible: true,
		autoHeight: false,
		alwaysOpen: false
		});
		$(".tiptip").tipTip();
});


