$(document).ready(function() { var $menuitem = $('table#howTable img'); $menuitem.css('cursor', 'pointer'); $menuitem.click(function() { var theid = $(this).attr('id'); var theswf = 'how_' + theid + '.pl.swf'; var width; var height; switch(theid) { case 'fabrication': width = 450; height = 475; break; case 'waxcarving': width = 450; height = 475; break; } var so = new SWFObject(theswf, "sotester", width, height, "7", "#ffffff"); so.write("flashcontent"); }); // end click $('table#howTable img#fabrication').trigger('click'); }); // end ready