$(window).ready(function () { //$(".picturebox").fixborderissue(); $(".player").click(function(e){ $f($(this).attr('id'), "flowplayer/flowplayer-3.1.5.swf", $(this).attr('href')); $f($(this).attr('id')).play(); return false; }); }); jQuery.fn.fixborderissue = function() { //$(this[0]).css('width',parseInt($(this[0]).css('width').split('px')[0])+(parseInt($(".picturebox").find('a').css('border-left-width').split('px')[0])*2)+'px'); $(this).each(function (e) { $(this).css('width',parseInt($(this).css('width').split('px')[0])+(parseInt($(".picturebox").find('a').css('border-left-width').split('px')[0])*2)+'px'); $(this).css('padding-top',(parseInt($(".picturebox").find('a').css('border-left-width').split('px')[0])*2)+'px') }); };