//<![CDATA[
$(document).ready(function() {
	
	//preload images
    $('.rollover').each(function(){
        $('<img/>').appendTo('body')
            .css({ display: "none" })
            .attr('src',$(this).attr('src').replace(/([^.]*)\.(.*)/, "$1_on.$2"));
    });
    //hover them
    $('.rollover').hover(
        function(){
            t = $(this);
            t.attr('src',t.attr('src').replace(/([^.]*)\.(.*)/, "$1_on.$2"));
        },
        function(){ 
            t = $(this);
            t.attr('src',t.attr('src').replace('_on',''));
        }
     );
	 
	 
	 /* share button */
	$(".trigger").toggle(function(){
	   $('#share_target').animate({width: 255, marginLeft: 0},500);
	},function(){
	   $('#share_target').animate({width: 35, marginLeft: 220},500);
	});
	
	
	$('#subscribehref').click(function() {
		$('#frmSubscribe').submit();
		return false;
	});


});


function resizePanel($target) {
	width = $(window).width();
	if(width<=965) { width=965; }
	$target.css({width: width});
	$('#share').css({width: width});
}

//]]>
