$(window).ready(function () { //fixborderissue fixar om du har border runt bilder //kan ibland krasha IE ???? (inte random men när vissa element finns där) //$(".picturebox").fixborderissue(); /* $(".player img").css('opacity','0.7'); $(".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).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') }); };