/* SCROLL */
function goToByScroll(id){
	$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}	


$(document).ready(function(){

	

	$(this).initBody(); // body classes

	$(this).formInit(); // append class depending on type of input

	$(this).firstLastChild(); // appends class to first and list children of lists, td and th elements

	$(this).evenOddChild(); // appends class to odd and even list children of lists, td and th elements

	$(this).brokenImage(); // hides broken images
	
	$("a[href^='http:']:not([href*='" + window.location.host + "'])").each(function() {               
        $(this).attr("target", "_blank");
    });
	
	$('embed, object').each(function(){
		$(this).attr('wmode', 'transparent');
	});

	$('.trigger-popup').fancybox();

});
