// JavaScript Document
jQuery(document).ready(function(){
	// email anti-spam
	jQuery('span.snd_eml').each(function(i){
		var c = jQuery(this).text().split(' (0) ').join('@');
		var text = jQuery(this).attr('title') ? jQuery(this).attr('title') : '';
		var aId = jQuery(this).attr('id') ? 'id="'+ jQuery(this).attr('id') +'"' : '';
		if (text)	jQuery(this).replaceWith('<a href="mailto:' + c + '"'+ aId +'>' + text + '</a>');
		else 	jQuery(this).replaceWith('<a href="mailto:' + c + '"'+ aId +'>' + c + '</a>');
	});
	// clear #mailto text for Opera
	jQuery('#mailto').text('');
	
	var isIE = jQuery.browser.msie;
	
	jQuery('#contentblock #works .work a').hover(function(){
    if(!isIE) jQuery(this).find('.opacityblock').fadeIn('fast');
    else jQuery(this).find('.opacityblock').show();
    jQuery(this).find('.workinfo').fadeIn('fast');		
	},function(){
		if(!isIE) jQuery(this).find('.opacityblock').fadeOut('fast');
		else jQuery(this).find('.opacityblock').hide();
		jQuery(this).find('.workinfo').fadeOut('fast');
	});
	
	jQuery('#contentblock a[rel*="external"]').click(function(){
    this.target = "_blank";
  });
	
	
	// add flash
	var params = {
		wmode: "transparent",
		quality: "high"
	};
	swfobject.embedSWF("/files/apk.swf", "apk-flash", "580", "580", "9.0.0", "http://www.macromedia.com/go/getflashplayer", null, params);

});

function toPrint(elm, exc) {
  pr = jQuery('#'+ elm).clone();
  if (exc) pr.find('#'+ exc).remove();
  newWin = window.open('','printWindow','Toolbar=0,Location=0,Directories=0,Status=0,Menubar=0,Scrollbars=0,Resizable=0');
  newWin.document.open();
  newWin.document.write(pr.html());
  newWin.document.close(); 
  newWin.print();
}
