$(document).ready(function() {
	
	// Mega drop down
	$('.mega').mouseover(function() {$(this).addClass('hovering');});
	$('.mega').mouseout(function() {$(this).removeClass('hovering');});
	
	//cufon
	Cufon.replace('#sidebar h3, #main-content h3');
	Cufon.now(); //ie
	
	// add class last for IE
	$('#sidebar div:last').addClass('last');
	
	//show excerpt
	$('p.more').hide();
	$('a.show-more').click(function() {
    	$('p.more').slideToggle('slow');
    });
      
    // Home Page Scroller
	$('#photo-rotator').before('<div id="nav"><span>Euramax Divisions:</span>').cycle({
        fx:     	'fade',
        speed:		1000,
        timeout: 	4000,
        pause: 		1,
        pager:  	'#nav'
    });
    
	//carousel
	$("#gallery").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
        circular: false
    });
    
    //prettyPhoto
    $("a[rel^='prettyPhoto']").prettyPhoto({
		counter_separator_label: 'of', /* The separator for the gallery counter 1 "of" 2 */
		theme: 'dark_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
	});

// End Doc Ready
});




