$(document).ready(function() {
	// new slider with indicator
	$('#theslider').bxSlider({
		auto_controls: false,
		controls: false,
		pager: true,
		alignment: 'horizontal',
		wrapper_class: 'slides1_wrap',
		margin: 40,
		auto: true
	});
	
	// open external links in new tab	
	$(function () {
    	$('a[href^="http://"]:not([href^="http://brandbuero.de/"])').attr({target: "_blank"});
	});
	
	// print css
	$("a.metaPrint").click(function() {
    	$('head').append('<link rel="stylesheet" href="/print.css" type="text/css" />');
	});
	
	// style the leading paragraph
	$('.isPage .article p:first').addClass("leading");
	$('.pageSliderContent .text p:first').addClass("leading");
		
	// scale portfolio items
	$('.clientlogo img').hover(function() {
		$(this).parents('.item').addClass('current')
	}, function() {
		$('.item').removeClass('current');
	});
	
	// load the Slideshow
    $('#slideshow').cycle({
		fx: 'scrollDown',
		easing: 'easeOutCirc'
	});
	
	// pageSlider
	$('#pageSlider') 
	.after('<div id="sliderPagination">') 
	.cycle({ 
    	fx:     'scrollRight',
    	easing: 'easeOutCirc',
	    speed:  'fast',
    	timeout: 0,
	    pager:  '#sliderPagination',
		prev:   '#prev',
		next:   '#next',
	    pause: 1
	});


});
