$('html').addClass('js');

$(function(){

	// Fancybox
	$('.product-image').fancybox();

	// Flash slideshow for home page
	$('.home-page #slideshow').flash(
    { src: 'http://dimedia/htdocs/biromax/flash/home-page/home-slideshow.swf', width: 949, height: 360, wmode: 'opaque', flashvars: { xmlURL: 'http://dimedia/htdocs/biromax/flash/home-page/xml.xml' } }, 
    { version: '9' }
	);
	
	// Product about page slideshow
	switch($('#content').attr('class').split(" ")[1]){
		case 'biromax': var pageSlideshow = 'http://dimedia/htdocs/biromax/flash/biromax/biromax-slideshow.swf'; break;
		case 'cello': 	var pageSlideshow = 'http://dimedia/htdocs/biromax/flash/cello/cello-slideshow.swf'; break;
		case 'tibhar': 	var pageSlideshow = 'http://dimedia/htdocs/biromax/flash/tibhar/tibhar-slideshow.swf'; break;
	}
	$('.product-page #slideshow').flash(
    { src: pageSlideshow, width: 735, height: 373, wmode: 'opaque' }, 
    { version: '9' }
	);
	
	// External links in new window
	$('a[rel="external"]').click( function() { window.open( $(this).attr('href') ); return false; });

});
