/*
 * Requires JQuery (Written using ver 1.2.3)
 */

$(document).ready(function() {
  forceRollovers();
  insertFlash();
});

/* */
function forceRollovers() {
  // Find items
  $('body.home div#content a span, div#sidebar a span, div#nav li a, div#nav p a').hover(
  	function() {
  		$(this).addClass('hovered');
  	},
  	function () {
  		$(this).removeClass('hovered');
	});
}

/* 
 * Requires jQuery Flash Plugin
 * http://jquery.lukelutman.com/plugins/flash/
 */
function insertFlash() {
  $('.header-inner').flash({
    src: '/prescriptioncharges/movies/home.swf',
    width: 364,
    height: 373
  });
}
