var newJQuery = jQuery.noConflict();

newJQuery(document).ready(function() {
	newJQuery("div.LogoDesign_button").click(function(){
		newJQuery("div#LogoDesign").animate({
			height: "190px"
		})
		.animate({
			height: "200px"
		}, "fast");
		newJQuery("div.LogoDesign_button").toggle();
	});	
   newJQuery("div#hide_LogoDesign").click(function(){
		newJQuery("div#LogoDesign").animate({
			height: "0px"
		}, "fast");
   });	
   
   
	newJQuery("div.BusinessCards_button").click(function(){
		newJQuery("div#BusinessCards").animate({
			height: "190px"
		})
		.animate({
			height: "200px"
		}, "fast");
		newJQuery("div.BusinessCards_button").toggle();
	});	
   newJQuery("div#hide_BusinessCards").click(function(){
		newJQuery("div#BusinessCards").animate({
			height: "0px"
		}, "fast");
   });	
   
   
	newJQuery("div.Website_button").click(function(){
		newJQuery("div#Website").animate({
			height: "300px"
		})
		.animate({
			height: "310px"
		}, "fast");
		newJQuery("div.Website_button").toggle();
	});	
   newJQuery("div#hide_Website").click(function(){
		newJQuery("div#Website").animate({
			height: "0px"
		}, "fast");
   });	
   
   
		newJQuery('select#LogoDesignSelect').selectmenu({style:'dropdown'});
		newJQuery('select#BusinessCardsDesigns').selectmenu({style:'dropdown'});
		newJQuery('select#BusinessCardsSets').selectmenu({style:'dropdown'});
		newJQuery('select#BusinessCardsPrice').selectmenu({style:'dropdown'});
		newJQuery('select#WebDesign').selectmenu({style:'dropdown'});
	
});


// checkboxes 



