$(document).ready(function(){
  var browser = jQuery.browser;
	if(browser.msie && parseInt(browser.version) == 6) {
    $.ifixpng('img/x.gif');
    $('img[@src$=.png], .imgdiv').ifixpng();
  }
	
	$('#nyear').hover(function() {
		$('#blocktohide').slideDown();
	}, function() {
		return false;
	});
	
	$('#nyear').click(function(){
		$('#blocktohide').slideUp();
		return false;
	});

	// email anti-spam
	$('span.snd_eml').each(function(i){
		var c = $(this).text().split(' (0) ').join('@');
		var t = $(this).attr('title');
		if (t)	$(this).replaceWith('<a href="mailto:' + c + '">' + t + '</a>');
		else 	$(this).replaceWith('<a href="mailto:' + c + '">' + c + '</a>');
	});
	
	$('.line:even').addClass('light');
	$('.light .awardimg').addClass('darkbg');
	
	// add flash
	var flashvars = {
    link1:"all.html",
    link2:"index.html",
    link3:"image.html",
    link4:"client.html",
    link5:"contacts.html"
  };
  var params = {
    wmode: "transparent",
    quality: "high"
  };
	swfobject.embedSWF("flash/circle2.swf", "flash", "760", "290", "7.0.0", "http://www.macromedia.com/go/getflashplayer", flashvars, params);
	
});