$(document).ready( function() {
    $("ul.component-items ul").hide();
    $("ul.component-items li").css({"cursor":"pointer"});
    $("ul.component-items li").click(function () {
		$(this).children("ul").toggle("slow");
		$(this).toggleClass("openTab");
		console.log($(this));
    });
    // ADD Scroll effect
    $.localScroll();
    
    $(".contact-in-text").mouseover(function () {
	
	$(".contact-in-text").animate({backgroundPosition: "460px" },1500,function () {resetBG()});
    });
});

function resetBG() {
    $(".contact-in-text").css({"background-position" : "173px 50%"});
}


