/*///////////////////// tab //////////////////////////////*/
      $(".idTabs").idTabs("!mouseover");
      $(".idTabs").idTabs(true,location.hash);


/*///////////////////// rollover //////////////////////////////*/
$(function(){
    $("img.rollover").mouseover(function(){
        $(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
    }).mouseout(function(){
        $(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
    }).each(function(){
        $("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
    })
})

/*///////////////////// prettyPhoto //////////////////////////////*/
	$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	});

/*///////////////////// Form-Validate //////////////////////////////*/	
$(document).ready(function() {
	$("#form-host").validate();
});

/*///////////////////// print //////////////////////////////*/
function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();	
	}}

/*///////////////////// index-page list //////////////////////////////*/
$(document).ready(function(){
  $(".news-cont").each(function(){
    jQuery(this).find("li:even").addClass("even");
  });
});