jQuery.noConflict();
  
jQuery(document).ready(function($){

	$('a.print_this').click(function() {
		
		$(this).unbind();

		$('.slideElement').each(function(index) {
		
			// vars
    		var x = $(this).css('background-image');
    		var img = x.substring(4,x.lastIndexOf(')'));
    		
    		// produkte
    		$('.detailItemImg .rgsgcontent').hide();
    		$('.detailItemImg img').css('max-width','360px').css('margin-bottom','5px');
    		$('.detailItemImg').css('width','360px').css('text-align','center').append('<img src='+ img +' />');
    		//$('.detailItemImg img:gt(0)').hide();
    		
    		// referenzen
    		$('#galerie .tx-rgsmoothgallery-pi1').hide();
     		$('#galerie img').css('max-width','285px');
    		$('#galerie').append('<img src=' + img + ' />');
    		$('#galerie img:gt(0), #galerie > br').hide();
    		
  		});
  		
  		setTimeout('window.print();',1000);
  		return false;
  		
	});
	
});
