$(document).ready(function(){


	/*
	 * Sidebar title effect 
	 *
	 */
	if ($(".list_of_sidebar_elements .elements").length) {  	 
	 	 
		$(".list_of_sidebar_elements .elements").hover(function(){ // on rollover		
			
			$(this).children("h3").children("p").stop().animate({"left":"12px"},100);	
			
			$(this).children("h3").children("p").children("a").children(".arrow").stop().fadeIn(100);						
					
		},function(){ // on rollout
			$(this).children("h3").children("p").stop().animate({"left":"0px"},200);	
			
			$(this).children("h3").children("p").children("a").children(".arrow").stop().fadeOut(200);
		});
	}

	/*
	 * Comp table
	 *
	 */
	if ($("ul.comparative-table li").length) {  	 
		$('ul.comparative-table li').not('.nolink').click(function() {	
			window.location.href = $(this).children('p').children('a.link-more').attr('href');
		});		 
	}
    
});




