// JavaScript Document
$(function(){
	$('.media1').each(function() {
		var parent = $(this).parent();
		if($(this).is('[@rel^=shadowbox]')) {
			var rel = $(this).attr('rel');
			var href= $(this).attr('href');
		}
	
		$(this).media({
			width:180,
			height:90,
			caption:false,
			params: {
				wmode: 'transparent'
			}
		});
		if(typeof rel != 'undefined')
			$('.media1', parent).wrap('<a href="'+href+'" rel="'+rel+'"></a>');
	});
});
$(function(){
$('.flash2').media({width:680,height:70,caption:false});
});
$(function(){
$('.media3').media({width:1200,height:750,caption:false});
});
