$(document).ready(function() { var $menuitem = $('table#customTable img'); $menuitem.css('cursor', 'pointer'); $menuitem.click(function() { var theid = $(this).attr('id'); var theswf = 'custom_' + theid + '.swf'; var width; var height; switch(theid) { case 'rings': width = 418; height = 549; break; case 'pendants': width = 357; height = 440; break; case 'earrings': width = 299; height = 453; break; case 'bracelets': width = 403; height = 380; break; case 'mens': width = 403; height = 380; break; case 're-design': width = 368; height = 465; break; } var so = new SWFObject(theswf, "sotester", width, height, "7", "#ffffff"); so.write("flashcontent"); }); // end click $('table#customTable img#rings').trigger('click'); }); // end ready