// Title: Russell and Sons - javascript// Author: Kalon Edser, http://www.kalonedser.com/// Updated: 21 May 2010jQuery(document).ready(function() {		$('body').addClass('js');		// prettyphoto	$("a[rel^='prettyPhoto']").prettyPhoto({		animationSpeed: 'normal', /* fast/slow/normal */		opacity: 0.80, /* Value between 0 and 1 */		showTitle: false, /* true/false */		allowresize: true, /* true/false */		default_width: 500,		default_height: 344,		counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */		theme: 'light_rounded' /* light_rounded / dark_rounded / light_square / dark_square / facebook */	});		// slideshow	$('.top-image').cycle({ 	    fx:    'fade',		timeout: 5000,	    speed:  2500 	 });		// view gallery link	$('.gallery-thumbs').each(function(){		var $thisGallery = $(this), 			$link = $thisGallery.find('a:eq(0)').html('View Gallery');		$link.insertBefore($thisGallery).wrap('<p class="gallery-link"></p>');	});		//style	$('.file-list li:last-child p').addClass('last');	$('.article:last').addClass('last');		// open new window for external links	$('A[rel="external"]').click( function() {		window.open( $(this).attr('href') );		return false;	});		// fix png images with alpha channels	$.ifixpng('../img/pixel.gif');	$('.png').ifixpng();});