jQuery(document).ready(function(){
	//jQuery('td[class="portfolio"]').each(function(){
		//jQuery('td[class=portfolio]').find('img').addClass('opaq');
		//jQuery(this).find('img').stop().removeClass('opaq').animate({top: '-5px', left: '-15px', width: '150px', height: '150px'}, 500);
		//return false;
	//});
	//jQuery('td[class="td_main"]').corner();
	
	//jQuery('td[class="portfolio"]').hover(function() {
		//jQuery('td[class="portfolio"]').find('img').stop().animate({top: '0', left: '0', width: '130px', height: '130px'}, 500);
		//jQuery(this).css({'z-index' : '10'}); /*Add a higher z-index value so this image stays on top*/ 
		//jQuery(this).find('img').stop() /* Add class of "hover", then stop animation queue buildup*/
			//.animate({
				//top: '-3px', 
				//left: '-10px', 
				//width: '140px', 
				//height: '140px'
			//}, 500); /* this value of "200" is the speed of how fast/slow this hover animates */
		//} , function() {
		//jQuery(this).css({'z-index' : '0'}); /* Set z-index back to 0 */
		//jQuery('td[class="portfolio"]').find('img');
		//jQuery(this).find('img').stop()  /* Remove the "hover" class , then stop animation queue buildup*/
			//.animate({
			//	top: '0', 
			//	left: '0', 
			//	width: '130px', 
			//	height: '130px'
			//}, 500);
	//});		
	//jQuery.easing.def = 'easeOutBounce';
	  /*
	  jQuery('a[class^="menu"]').mouseover(function(e) {
		jQuery(this).animate({lineHeight:32}, {duration: 500});
	  });
	  jQuery('a[class^="menu"]').mouseout(function(e) {
		jQuery(this).animate({lineHeight:22}, {duration: 500});
	  });
	  
	jQuery('a[class^="menu"]').mouseover(function(e) {
		jQuery(this).animate({lineHeight:32}, {duration: 500});
	});
	jQuery('a[class^="menu"]').mouseout(function(e) {
		jQuery(this).animate({lineHeight:22}, {duration: 500});
	});
	*/
	/*
	jQuery('a[class^="lang"]').mouseover(function(e) {
		jQuery(this).animate({paddingLeft:14}, {duration: 500});
	});
	jQuery('a[class^="lang"]').mouseout(function(e) {
		jQuery(this).animate({paddingLeft:8}, {duration: 500});
	});
	*/
	//jQuery('a[class^="menu"]').hover(function(){jQuery(this).animate({paddingTop: "-10px"}, 200);});
	//jQuery('a[class^="menu"]').hover(function(){jQuery(this).animate({paddingTop: "10px"}, 200);});
	
	//if (!jQuery.browser.msie) jQuery('[class="portfolio"]').children().find('img').corner();
});
//----------------------------------
function nothing() {return;}
//----------------------------------
function mailto(mailuser, maildomain, mailtld, mailsubject) {
	if(!mailsubject) {
		document.location = "mailto:"+mailuser+"@"+maildomain+"."+mailtld+"";
	} else {
		mailsubject = escape(mailsubject);
		document.location = "mailto:"+mailuser+"@"+maildomain+"."+mailtld+"?subject="+mailsubject+"";
	}
}

