$(document).ready(function(){

//so it dosent conflict with prototype 

var $j = jQuery.noConflict();

        
$j(".topdrop").hover(

function(){

imgsrc = $j(this).find('.topimg').attr('src');
imgsrc = imgsrc.replace('1.gif','2.gif');
$j(this).find('.topimg').attr('src',imgsrc);
$j('.subdrop').hide();
$j(this).find('.subdrop').show();

},
function(){

imgsrc = $j(this).find('.topimg').attr('src');
imgsrc = imgsrc.replace('2.gif','1.gif');
$j(this).find('.topimg').attr('src',imgsrc);
$j(this).find('.subdrop').hide();

});       	
 
 
 
 $j("a[href*=.flv]").click(function(){

$f().play($j(this).attr('href'));
		

		return false;

});
        
});
