function shineLinks(id){
try{
var el=document.getElementById(id).getElementsByTagName('a');
var url=document.location.href;
for(var i=0;i<el.length; i++){
if (url==el[i].href){
el[i].className += ' selected';
};
};
}catch(e){}
};


//function init_slideshow()
//{
	hs.graphicsDir = '/local/js/highslide/graphics/';
	hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = 'rounded-white';
	hs.fadeInOut = true;

	hs.addSlideshow({
		//slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: 'fit',
		overlayOptions: {
			opacity: .75,
			position: 'bottom center',
			hideOnMouseOut: true
		}
	});
//}


function init_pretty_photo()
{
	var ru = jQuery.noConflict();  
	ru(function() {
		ru("a[rel^='only_one_raz']").prettyPhoto({theme:'dark_rounded'});
	});
}


$(document).ready(function(){
	//init_slideshow();
	//init_pretty_photo();
});








