////////////////////////////////////////////////////
//
// GALLERYPRETTY.JS
//
//	This page defines javascript for the gallery
//	pages when the prettyPhoto plugin is used.
//
// Created 15/07/2009 by Chris Jones
//
////////////////////////////////////////////////////

function initPageSpecific(){
	// Target the gallery images and flash files
	jQ(".RDCMS_JSexpose a[href*=images/linked][rel]").each(function() {
		jQ(this).attr('rel','prettyPhoto['+jQ(this).attr('rel')+']');
	});
	jQ(".RDCMS_JSexpose a[href*=flash/linked][rel]").each(function() {
		jQ(this).attr('rel','prettyPhoto['+jQ(this).attr('rel')+']');
	});
	jQ(".RDCMS_JSexpose a[href*=images/linked]:not([rel])").attr('rel','prettyPhoto[RDCMS_gallery]');
	jQ(".RDCMS_JSexpose a[href*=flash/linked]:not([rel])").attr('rel','prettyPhoto[RDCMS_gallery]');

	// Use the prettyPhoto plugin on them
	jQ(".RDCMS_JSexpose a[rel^='prettyPhoto']").prettyPhoto({
//		showTitle:false,
		counter_separator_label:' of ',
		autoresize:false,
		theme:'light_square'
	});

}