/**
*
*	Common functions
*
*
*/
/**
*	Give all required fields a class of "required"
*/
jQuery.noConflict();
jQuery(document).ready(function(){ 
	//console.log('here');
	loadFlashPhotos(1, 'flashPhotosOfficial', 'flashPhotosOfficial');
	loadFlashPhotos(2, 'flashPhotosUser', 'flashPhotosUser');
});

function loadFlashPhotos(galleryId, targetElem, movieId){

	if(jQuery(targetElem)){
		
		var flashvars = {};

		var params = {};
		params.wmode = "transparent";
		
		var attributes = {};
		attributes.id = movieId;
		attributes.name = movieId;

		//swfobject.embedSWF("http://strata.internal/themed/frontend/swf/imageViewer.swf?id="+galleryId+"&local=0&showdebug=1", targetElem, "420", "212", "9.0.0","http://strata.internal/themed/frontend/swf/expressInstall.swf", flashvars, params, attributes);
		swfobject.embedSWF("/themed/frontend/swf/imageViewer.swf?id="+galleryId+"&local=0&showdebug=0", targetElem, "420", "208", "9.0.0","/themed/frontend/swf/expressInstall.swf", flashvars, params, attributes);
		//swfobject.embedSWF('/themed/frontend/swf/home.swf', targetElem, "420", "208", "9.0.0","/_swf/expressInstall.swf", flashvars, params, attributes);

	}	
}