$(document).ready(function()
{
    Cufon.replace('h4.bannerTitle', { textShadow: '1px 1px 1px #777777' });
    //Cufon.replace('h1.title', { textShadow: '1px 1px 1px #777777' });
    //Cufon.replace('h3.title', { textShadow: '1px 1px 1px #777777' });
    // TEMPLATE SETTINGS

    $(window).bind('resize', function() {    
        
        var pageWidth = $(window).width();       
        
        var widthResult = ((pageWidth-970)/2)+768;
        
        $("#background").width(widthResult);                           
        
    });
    
    $(window).bind('load', function() {    
        
        var pageWidth = $(window).width();       
        
        var widthResult = ((pageWidth-970)/2)+768;
        
        $("#background").width(widthResult);                  
    
    });      


	$('#slideshow').galleryView({
		wrapper_width: 426,
		gallery_width: 426,
		gallery_height: 187,
		frame_width: 70,
		frame_height: 100,
        panel_img_h:387,
        panel_img_w:726,
		pause_on_hover: false
	});


    //**// 

     $('#gallery').bcGallery();
     
     
		$('ul#gallery li a.gal').click(function(e){
			e.preventDefault;
			var $bigImg = $(this).attr('href');
			$("#main_image").html('<img src="' + $bigImg + '" />');
			return false;
		});              
        
});

