var img='http://iwebdevel.lh/wp-content/themes/iwd/images/shiny.png';
//$('.topNavigation').append('<img class="shiny" style="display:none;height:1px;width:10px" src="'+img+'" />');
shinyWidth=$('.shiny').attr("naturalWidth");
initLeft=$('.shiny').attr("offsetLeft")-shinyWidth;
finishLeft=initLeft+$('.topNavigation').attr("clientWidth");
$('.shiny').css({"position":"absolute","top":"-1px","left":initLeft+"px","display":"block"});
function animate() {
    $('.shiny').fadeIn(100);
    $('.shiny').animate({left:finishLeft},2000,"swing",function(){ $(this).fadeOut(200); $(this).animate({left:initLeft},2000,"linear",function(){ animate(); }); });
}
$(document).ready(function(){
    animate();
});
